home *** CD-ROM | disk | FTP | other *** search
- IntelHex hexadecimal records...
- ;
- ;IntelHex format is an ascii formatted file
- ;
- ;First a ':' and we use ASCB because it's in ascii.
- ASCB 3A
- ;Hold in memory the following number &Hxx (hex number so NUMH)
- NUMH
- ;Skip the following 2 hex numbers &Hxxxx
- SKPH 2
- ;Next there is a 00 null byte in hex
- HEXB 00
- ;SKiP Hex numbers the memory number read by 0=NUMH
- SKPH 0
- ;The next hex byte is the checksum but it's unsupported so ignored
- SKPH 1
- ; Finally &H0A and &H0D ascii bytes
- ASCB 0D
- ASCB 0A
- STOP
-